home *** CD-ROM | disk | FTP | other *** search
Wrap
XSetup plugin | 2001-01-06 | 1.7 KB | 59 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0" "TYPE"="1" "COUNT"="3" "UIPATH"="Appearance\Desktop\Icons\Tool Tips" "NAME"="Icon Tool Tips #1" "VERSION"="2.03" "LANGUAGE"="VBScript" "TEXT 1"="My Computer" "TEXT 2"="My Documents" "TEXT 3"="My Network" "DESCRIPTION 1"="If you have ActiveDesktop or Windows 2000 installed, a small yellow window (aka Tool Tip) for these items will appear on the desktop if you pass them with your mouse." "DESCRIPTION 2"="You can change these tips to anything you want." "AUTHOR"="Xteq Systems" "CONTACTURL"="http://www.xteq.com" "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved" "COMMENT 1"=" " '****************************************************************** '*** ### MASTER TEMPLATE ### **** '****************************************************************** sVals=Array("{20D04FE0-3AEA-1069-A2D8-08002B30309D}","{450D8FBA-AD25-11D0-98A8-0800361B1103}","{208D2C60-3AEA-1069-A2D7-08002B30309D}") '****************************************************************** '*** Keep an eye on the order (must be the same as "TEXT x") ! **** '****************************************************************** sP="HKLM\Software\Classes\CLSID\" sV="InfoTip" Sub Plugin_Initialize for i=0 to UBound(sVals) Call ReadIt(i+1,sVals(i)) next End Sub Sub ReadIt(UI,VAL) s=RegReadValue(sp & VAL & "\" & sV) Call SetUIElement(UI,s) End Sub Sub Plugin_CheckData(ElementIndex) End Sub Sub Plugin_Apply(ElementIndex,ElementSubIndex) for i=0 to UBound(sVals) Call WriteIt(i+1,sVals(i)) next End Sub Sub WriteIt(UI,VAL) s=GetUIElement(UI) Call RegWriteValue(sp & VAL & "\" & sV,s,1) End Sub Sub Plugin_Terminate End Sub